Update arch list that ignore test result
authorJochen Sprickerhof <git@jochen.sprickerhof.de>
Fri, 10 Jul 2020 13:07:42 +0000 (15:07 +0200)
committerJochen Sprickerhof <git@jochen.sprickerhof.de>
Fri, 10 Jul 2020 13:07:42 +0000 (15:07 +0200)
debian/rules

index 480383b3887fe5e2942607e4923ae6e7aa81c3e0..2048abe633a26cf8e28b4bb02ec93b91a6fd6708 100755 (executable)
@@ -29,10 +29,10 @@ override_dh_auto_build-indep:
        $(MAKE) doc
        $(MAKE) gpsbabel.html
 
-# Ignore broken unit tests on other architectures
+# Ignore broken unit tests on some architectures
 override_dh_auto_test:
-ifneq (,$(filter $(DEB_BUILD_ARCH),amd64 armel armhf i386 mips64el mipsel m68k sh4))
-       dh_auto_test
-else
+ifeq (,$(filter $(DEB_BUILD_ARCH),i386 s390x sparc64))
        dh_auto_test || true
+else
+       dh_auto_test
 endif